initial commit
[clinton/prusa3.git] / old stuff / printable-bushing.scad
CommitLineData
d3618a65
NZ
1// PRUSA Mendel
2// Bushings
3// GNU GPL v3
4// Josef Průša
5// josefprusa@me.com
6// prusadjs.cz
7// http://www.reprap.org/wiki/Prusa_Mendel
8// http://github.com/prusajr/PrusaMendel
9
10include <configuration.scad>
11
12/**
13 * @id printable-bushing
14 * @name Printable Bushing
15 * @category Printed
16 */
17
18rodsize = bushing_rodsize;
19outerDiameter = bushing_outerDiameter;
20lenght = bushing_lenght;
21type = bushing_type;
22
23
24module printable_bushing(){
25 translate(v = [0,0,0.5]){
26
27 cube(size = [22,10,0.5], center=true);
28 translate(v = [0,0,0.5]) cube(size = [20,2,0.5], center=true);
29 translate(v = [0,4,0.5]) cube(size = [20,2,0.5], center=true);
30 translate(v = [0,-4,0.5]) cube(size = [20,2,0.5], center=true);
31 }
32}
33printable_bushing();